Styliser les cellules, les bordures, et les polices dans Excel avec C#
using IronSoftware.Drawing;
using IronXL;
using IronXL.Styles;
using System.Linq;
WorkBook workBook = WorkBook.Load("sample.xls");
WorkSheet workSheet = workBook.WorkSheets.First();
var range = workSheet["A1:H10"];
var cell = range.First();
// Set background color of the cell with an rgb string
cell.Style.SetBackgroundColor("#428D65");
// Apply styling to the whole range.
// Set underline property to the font
// FontUnderlineType is enum that stands for different types of font underlying
range.Style.Font.Underline = FontUnderlineType.SingleAccounting;
// Define whether to use horizontal line through the text or not
range.Style.Font.Strikeout = false;
// Define whether the font is bold or not
range.Style.Font.Bold = true;
// Define whether the font is italic or not
range.Style.Font.Italic = false;
// Get or set script property of a font
// Font script enum stands for available options
range.Style.Font.FontScript = FontScript.Super;
// Set the type of the border line
// There are also TopBorder,LeftBorder,RightBorder,DiagonalBorder properties
// BorderType enum indicates the line style of a border in a cell
range.Style.BottomBorder.Type = BorderType.MediumDashed;
// Indicate whether the cell should be auto-sized
range.Style.ShrinkToFit = true;
// Set alignment of the cell
range.Style.VerticalAlignment = VerticalAlignment.Bottom;
// Set border color
range.Style.DiagonalBorder.SetColor("#20C96F");
// Define border type and border direction as well
range.Style.DiagonalBorder.Type = BorderType.Thick;
// DiagonalBorderDirection enum stands for direction of diagonal border inside cell
range.Style.DiagonalBorderDirection = DiagonalBorderDirection.Forward;
// Set background color of cells
range.Style.SetBackgroundColor(Color.Aquamarine);
// Set fill pattern of the cell
// FillPattern enum indicates the style of fill pattern
range.Style.FillPattern = FillPattern.Diamonds;
// Set the number of spaces to intend the text
range.Style.Indention = 5;
// Indicate if the text is wrapped
range.Style.WrapText = true;
workBook.SaveAs("stylingOptions.xls");
Imports IronSoftware.Drawing
Imports IronXL
Imports IronXL.Styles
Imports System.Linq
Private workBook As WorkBook = WorkBook.Load("sample.xls")
Private workSheet As WorkSheet = workBook.WorkSheets.First()
Private range = workSheet("A1:H10")
Private cell = range.First()
' Set background color of the cell with an rgb string
cell.Style.SetBackgroundColor("#428D65")
' Apply styling to the whole range.
' Set underline property to the font
' FontUnderlineType is enum that stands for different types of font underlying
range.Style.Font.Underline = FontUnderlineType.SingleAccounting
' Define whether to use horizontal line through the text or not
range.Style.Font.Strikeout = False
' Define whether the font is bold or not
range.Style.Font.Bold = True
' Define whether the font is italic or not
range.Style.Font.Italic = False
' Get or set script property of a font
' Font script enum stands for available options
range.Style.Font.FontScript = FontScript.Super
' Set the type of the border line
' There are also TopBorder,LeftBorder,RightBorder,DiagonalBorder properties
' BorderType enum indicates the line style of a border in a cell
range.Style.BottomBorder.Type = BorderType.MediumDashed
' Indicate whether the cell should be auto-sized
range.Style.ShrinkToFit = True
' Set alignment of the cell
range.Style.VerticalAlignment = VerticalAlignment.Bottom
' Set border color
range.Style.DiagonalBorder.SetColor("#20C96F")
' Define border type and border direction as well
range.Style.DiagonalBorder.Type = BorderType.Thick
' DiagonalBorderDirection enum stands for direction of diagonal border inside cell
range.Style.DiagonalBorderDirection = DiagonalBorderDirection.Forward
' Set background color of cells
range.Style.SetBackgroundColor(Color.Aquamarine)
' Set fill pattern of the cell
' FillPattern enum indicates the style of fill pattern
range.Style.FillPattern = FillPattern.Diamonds
' Set the number of spaces to intend the text
range.Style.Indention = 5
' Indicate if the text is wrapped
range.Style.WrapText = True
workBook.SaveAs("stylingOptions.xls")
Install-Package IronXL.Excel
Styliser les cellules, les bordures, et les polices dans Excel avec C#
IronXL permet aux développeurs C# de styliser n'importe quel Excel Cell et Range en C#. IronXL prend en charge la plupart des options de style disponibles dans Microsoft Excel, telles que les polices, l'alignement du texte, les bordures, les couleurs, les arrière-plans et les motifs. L'exemple de code ci-dessous illustre un large éventail de styles configurables avec IronXL.
Les bordures individuelles Cell et Range (bas, haut, gauche, droite et diagonale) peuvent être définies sur 14 styles de bordure différents tels que pointillé, tireté et double, pour n'en nommer que quelques-uns, en utilisant l'énumération BorderType. Vous pouvez activer ou désactiver les propriétés ShrinkToFit et WrapText pour avoir plus de contrôle sur la façon dont la feuille de calcul organise la taille des cellules.
## Comment utiliser le style de bordure des cellules Excel en C#
Votre clé d'essai devrait être dans l'e-mail. Si elle ne l'est pas, veuillez contacter support@ironsoftware.com
Rejoignez les millions d'ingénieurs qui ont essayé IronPDF
Votre clé d'essai devrait être dans l'e-mail. Si elle ne l'est pas, veuillez contacter support@ironsoftware.com
Parlez à l'Équipe de Vente
Réservez une Consultation sans Engagement
Comment pouvons-nous vous aider :
Consultez votre flux de travail et vos points de douleur
Voyez comment d'autres entreprises répondent à leurs besoins en matière de documents .NET
Toutes vos questions reçoivent une réponse pour vous assurer d'avoir toutes les informations nécessaires. (Aucun engagement de quelque nature que ce soit.)
Obtenez un devis personnalisé pour les besoins de votre projet